home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / iscan.h < prev    next >
C/C++ Source or Header  |  1996-03-22  |  5KB  |  144 lines

  1. /* Copyright (C) 1992, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* iscan.h */
  20. /* Interface to Ghostscript scanner */
  21. /* Requires gsstruct.h, ostack.h, stream.h */
  22. #include "sa85x.h"
  23. #include "sstring.h"
  24.  
  25. /*
  26.  * Define the state of the scanner.  Before calling scan_token initially,
  27.  * the caller must initialize the state by calling scanner_state_init.
  28.  * Most of the state is only used if scanning is suspended because of
  29.  * an interrupt or a callout.
  30.  *
  31.  * We expose the entire state definition to the caller so that
  32.  * the state can normally be allocated on the stack.
  33.  */
  34. typedef struct scanner_state_s scanner_state;
  35.  
  36. /*
  37.  * Define a structure for dynamically growable strings.
  38.  * If is_dynamic is true, base/next/limit point to a string on the heap;
  39.  * if is_dynamic is false, base/next/limit point either to the local buffer
  40.  * or (only while control is inside scan_token) into the source stream buffer.
  41.  */
  42. #define max_comment_line 255    /* max size of an externally processable comment */
  43. #define max_dsc_line max_comment_line    /* backward compatibility */
  44. #define da_buf_size (max_comment_line + 2)
  45. typedef struct dynamic_area_s {
  46.     gs_string str;            /* for GC */
  47.     byte *base;
  48.     byte *next;
  49.     byte *limit;
  50.     bool is_dynamic;
  51.     byte buf[da_buf_size];        /* initial buffer */
  52.     gs_memory_t *memory;
  53. } dynamic_area;
  54. #define da_size(pda) ((uint)((pda)->limit - (pda)->base))
  55. typedef dynamic_area _ss *da_ptr;
  56.  
  57. /* Define state specific to binary tokens and binary object sequences. */
  58. typedef struct scan_binary_state_s {
  59.     int num_format;
  60.     int (*cont)(P3(stream *, ref *, scanner_state *));
  61.     ref bin_array;
  62.     uint index;
  63.     uint max_array_index;    /* largest legal index in objects */
  64.     uint min_string_index;    /* smallest legal index in strings */
  65.     uint top_size;
  66.     uint size;
  67. } scan_binary_state;
  68.  
  69. /* Define the scanner state. */
  70. struct scanner_state_s {
  71.     uint s_pstack;        /* stack depth when starting current */
  72.                 /* procedure, after pushing old pstack */
  73.     uint s_pdepth;        /* pstack for very first { encountered, */
  74.                 /* for error recovery */
  75.     bool s_from_string;    /* true if string is source of data */
  76.                 /* (for Level 1 `\' handling) */
  77.     enum {
  78.         scanning_none,
  79.         scanning_binary,
  80.         scanning_comment,
  81.         scanning_name,
  82.         scanning_string
  83.     } s_scan_type;
  84.     dynamic_area s_da;
  85.     union sss_ {        /* scanning sub-state */
  86.         scan_binary_state binary;    /* binary */
  87.         struct sns_ {            /* name */
  88.           int s_name_type;    /* number of /'s preceding a name */
  89.           bool s_try_number;    /* true if should try scanning name */
  90.                     /* as number */
  91.         } s_name;
  92.         stream_state st;        /* string */
  93.         stream_A85D_state a85d;        /* string */
  94.         stream_AXD_state axd;        /* string */
  95.         stream_PSSD_state pssd;        /* string */
  96.     } s_ss;
  97. };
  98. /* The type descriptor is public only for checking. */
  99. extern_st(st_scanner_state);
  100. #define public_st_scanner_state()    /* in iscan.c */\
  101.   gs_public_st_complex_only(st_scanner_state, scanner_state, "scanner state",\
  102.     scanner_clear_marks, scanner_enum_ptrs, scanner_reloc_ptrs, 0)
  103. #define scanner_state_init(pstate, from_string)\
  104.   ((pstate)->s_scan_type = scanning_none,\
  105.    (pstate)->s_pstack = 0,\
  106.    (pstate)->s_from_string = from_string)
  107.  
  108. /*
  109.  * Read a token from a stream.  As usual, 0 is a normal return,
  110.  * <0 is an error.  There are also three special return codes:
  111.  */
  112. #define scan_BOS 1        /* binary object sequence */
  113. #define scan_EOF 2        /* end of stream */
  114. #define scan_Refill 3        /* get more input data, then call again */
  115. int scan_token(P3(stream *s, ref *pref, scanner_state *pstate));
  116.  
  117. /*
  118.  * Read a token from a string.  Return like scan_token, but also
  119.  * update the string to move past the token (if no error).
  120.  */
  121. int scan_string_token(P2(ref *pstr, ref *pref));
  122.  
  123. /*
  124.  * Handle a scan_Refill return from scan_token.
  125.  * This may return o_push_estack, 0 (meaning just call scan_token again),
  126.  * or an error code.
  127.  */
  128. int scan_handle_refill(P5(const ref *fop, scanner_state *pstate, bool save,
  129.   bool push_file, int (*cont)(P1(os_ptr))));
  130.  
  131. /*
  132.  * Define the procedure "hook" for parsing DSC comments.  If not NULL,
  133.  * this procedure is called for every DSC comment seen by the scanner.
  134.  */
  135. extern int (*scan_dsc_proc)(P2(const byte *, uint));
  136.  
  137. /*
  138.  * Define the procedure "hook" for parsing general comments.  If not NULL,
  139.  * this procedure is called for every comment seen by the scanner.
  140.  * If both scan_dsc_proc and scan_comment_proc are set,
  141.  * scan_comment_proc is called only for non-DSC comments.
  142.  */
  143. extern int (*scan_comment_proc)(P2(const byte *, uint));
  144.